home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / PROGS / DEMOS / SMOOTH / Imakefile < prev    next >
Encoding:
Makefile  |  1998-08-12  |  509 b   |  24 lines

  1.  
  2. /* Copyright (c) Mark J. Kilgard, 1994. */
  3.  
  4. #include "../../../Glut.cf"
  5.  
  6. TARGETS = smooth
  7.  
  8. SRCS = glm.c gltx.c smooth.c trackball.c tb.c
  9.  
  10. AllTarget($(TARGETS))
  11.  
  12. NormalGlutProgramTarget(smooth,glm.o gltx.o smooth.o tb.o trackball.o)
  13.  
  14. LinkFile(trackball.c, ../../examples/trackball.c)
  15. LinkFile(trackball.h, ../../examples/trackball.h)
  16.  
  17. trackball.o: trackball.h
  18. tb.o: trackball.h
  19.  
  20. /* some old imake configs do setup "make depend" dependencies on linked files */
  21. depend:: trackball.c trackball.h
  22.  
  23. DependTarget()
  24.